home *** CD-ROM | disk | FTP | other *** search
/ Collection of Internet / Collection of Internet.iso / msdos / lynx / source / doslynx / src / tdoslyn6.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  1994-10-25  |  793 b   |  30 lines

  1. //    Copyright (c) 1993, University of Kansas, All Rights Reserved
  2. //
  3. //    Class:        TDosLynx : public TApplication
  4. //    Include File:    TDosLynx.h
  5. //    Purpose:    Implement our application object.
  6. //    Remarks/Portability/Dependencies/Restrictions:
  7. //    Revision History:
  8. //        12-09-93    created
  9. //        02-09-94    Split all members into seperate files to
  10. //                enhance overlay support.
  11. #include"tdoslynx.h"
  12.  
  13. void TDosLynx::idle()    {
  14. //    Purpose:    Accomplish idle time processing when no input
  15. //    Arguments:    void
  16. //    Return Value:   void
  17. //    Remarks/Portability/Dependencies/Restrictions:
  18. //    Revision History:
  19. //        12-13-93    created
  20.  
  21.     //    Call base object idle
  22.     TProgram::idle();
  23.  
  24.     //    Update our evolving views
  25.     TSV_sock->update();
  26.     TCV_clock->update();
  27.     THV_heap->update();
  28.     TDV_disk->update();
  29. }
  30.